Public Overloads Function Write( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
) As Data
Dim instance As TcpBase
Dim buffer() As Byte
Dim offset As Integer
Dim count As Integer
Dim value As Data
value = instance.Write(buffer, offset, count)
public Data Write(
byte[] ,
int ,
int
)
public: Data* Write(
byte[]* ,
int ,
int
)
public:
Data^ Write(
array<byte>^ ,
int ,
int
)
Parameters
- buffer
- Byte array of data to send.
- offset
- The position in the data buffer at which to begin sending data.
- count
- The number of bytes to send.
Return Value
A
Data object encapsulating the sent data. Returns null if the socket is closed.